89c7a5ccb9434a6a3af714a6c65e8768d786b4a7,VUE2/src/tufts/vue/ds/Association.java,Association,Association,#Field#Field#boolean#,81
Before Change
throw new IllegalArgumentException("field can't associate to itself: " + f1);
if (f1 == null || f2 == null)
throw new IllegalArgumentException("null field: " + f1 + "; " + f2);
Log.debug("Adding association:\n\tfield 1: " + quoteKey(f1) + "\n\tfield 2: " + quoteKey(f2));
field1 = f1;
field2 = f2;
schema1 = field1.getSchema();
After Change
if (DEBUG.SCHEMA)
Log.debug("Adding association:"
+ "\n\tfield 1: " + quoteKey(f1) + " " + Util.tags(f1)
+ "\n\tfield 2: " + quoteKey(f2) + " " + Util.tags(f2));
field1 = f1;
field2 = f2;
schema1 = field1.getSchema();